home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / qwkq200.zip / FIRST.BAT < prev    next >
DOS Batch File  |  1993-11-15  |  787b  |  28 lines

  1. @echo off
  2. echo  
  3. echo Quote v2.0 quick convert batch file.
  4. goto start
  5.  
  6.    This batch file will convert the text file QUOTES.TXT into a Quote
  7.    type data file called QUOTES.DAT. This file can then be used by the
  8.    Quote program.
  9.    The file QUOTES.TXT must be in the same directory as this batch file.
  10.    The program QCONVERT.EXE must be in the same directory or in the PATH.
  11.  
  12. :start
  13. if exist QUOTES.TXT goto do_it
  14. goto error
  15.  
  16. :do_it
  17. QCONVERT QUOTES.TXT QUOTES.DAT
  18. goto end
  19.  
  20. :error
  21. echo File QUOTES.TXT not found, data file NOT created.
  22. echo  
  23. echo This batch file is used to convert the QUOTES.TXT file included with
  24. echo this archive into a QUOTE type data file.
  25. echo You'll need the files QUOTES.TXT and QCONVERT.EXE to create the data file.
  26. goto end
  27.  
  28. :end